From b94f8b38619cf08ad85832cbf207ff2952a605eb Mon Sep 17 00:00:00 2001 From: "cl349@firebug.cl.cam.ac.uk" Date: Mon, 6 Jun 2005 08:57:47 +0000 Subject: [PATCH] bitkeeper revision 1.1680 (42a4100bIstutWsVAoi7aPO8tLbFkA) xc_load_elf.c, xc_load_bin.c: Fix missing rename (xc_*_probe -> probe_*) from previous commit. Signed-off-by: Christian Limpach --- tools/libxc/xc_load_bin.c | 6 +++--- tools/libxc/xc_load_elf.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/libxc/xc_load_bin.c b/tools/libxc/xc_load_bin.c index 21b3e5ce51..965ccd08da 100644 --- a/tools/libxc/xc_load_bin.c +++ b/tools/libxc/xc_load_bin.c @@ -108,9 +108,9 @@ loadbinimage( char *image, unsigned long image_size, int xch, u32 dom, unsigned long *parray, struct domain_setup_info *dsi); -int xc_bin_probe(char *image, - unsigned long image_size, - struct load_funcs *load_funcs) +int probe_bin(char *image, + unsigned long image_size, + struct load_funcs *load_funcs) { if ( NULL == findtable(image, image_size) ) { diff --git a/tools/libxc/xc_load_elf.c b/tools/libxc/xc_load_elf.c index c4b93e53a8..bc46636d75 100644 --- a/tools/libxc/xc_load_elf.c +++ b/tools/libxc/xc_load_elf.c @@ -29,9 +29,9 @@ loadelfsymtab( char *image, int xch, u32 dom, unsigned long *parray, struct domain_setup_info *dsi); -int xc_elf_probe(char *image, - unsigned long image_size, - struct load_funcs *load_funcs) +int probe_elf(char *image, + unsigned long image_size, + struct load_funcs *load_funcs) { Elf_Ehdr *ehdr = (Elf_Ehdr *)image; -- 2.30.2